Value | Description |
---|---|
path | Directory which should not already exist. Cordova will create this directory. For more details on the directory structure, see below. |
id | Default: io.cordova.hellocordova Reverse domain-style identifier that maps to id attribute of widget element in config.xml . This can be changed but there may be code generated using this value, such as Java package names. It is recommended that you select an appropriate value. |
name | Default: HelloCordova Application's display title that maps name element in config.xml file. This can be changed but there may be code generated using this value, such as Java class names. The default value is HelloCordova , but it is recommended that you select an appropriate value. |
Cordova - een project maken
Je kan een map creëren waarin je een Cordova webapp kan maken. Ga naar de map waarin je de Cordova app wilt ontwikkelen. Het is een goed idee om alle Cordova app's te groeperen in één map met bijvoorbeeld de naam
cordova
.Beschrijving
Om een nieuw Cordova project te creëren typ je cordova create <path>
. Om een overzicht te krijgen van de opties typ je cordova help create
.
Ga naar de map waarin je een Cordova app wilt maken. Typ achter de opdrachtprompt:
cordova create vos be.modernways.vos VosCordova
Als alles goed verloopt:
Bronnen
- Cordova create command reference documentation
- Cordova project directory structure
- Cordova project templates
- Lees Cordova Overview om te leren hoe Cordova werkt en zoek in de Plugins om te zien wat er voor elk platform beschikbaar is.
- Op SitePoint vind je een heleboel tutorials over Cordova.
2017-05-18 21:58:21